home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Tricks of the Mac Game Programming Gurus
/
TricksOfTheMacGameProgrammingGurus.iso
/
More Source
/
C⁄C++
/
AIFF DSP v22
/
plugin_src
/
null.c
< prev
next >
Wrap
Text File
|
1995-01-30
|
322b
|
24 lines
/* null.c: does nothing */
#include "plugin_specific.h"
void init_process_null( void )
{
}
void term_process_null( void )
{
}
void process_samdat_null( long buflen )
{
}
plugin_info plugin_null = {
init_process_null,
term_process_null,
process_samdat_null,
1, /* take_input */
0 /* make_output */
};